home *** CD-ROM | disk | FTP | other *** search
ASP WebService Directive File | 2002-01-25 | 656 b | 24 lines |
- <%@ WebService Language="VB" Class="MathService" %>
-
- Imports System
- Imports System.Web.Services
-
- < WebService (Description:="Yet another math web service", _
- Namespace:="www.vb2themax.com") > _
- Public Class MathService
- Inherits WebService
-
- < WebMethod (Description:="Add two Integers") > _
- Public Function Add(ByVal n1 As Integer, Byval n2 As Integer) _
- As Integer
- return n1 + n2
- End Function
-
- < WebMethod (Description:="Subtract two Integers") > _
- Public Function Subtract(ByVal n1 As Integer, Byval n2 As Integer) _
- As Integer
- return n1 - n2
- End Function
-
- End Class
-